Nevron Open Vision Documentation
Nevron.Nov.Dom Namespace / NNode Class / GetChildren Method / GetChildren(INFilter<NNode>) Method
filter to use, or null if no filter must be applied.


In This Topic
    GetChildren(INFilter<NNode>) Method
    In This Topic
    Gets a list that contains the children of this node that satisfy the specified filter. If no children satisfy the given filter, empty list is returned.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetChildren( _
       ByVal filter As INFilter(Of NNode) _
    ) As NList(Of NNode)
    'Usage
     
    
    Dim instance As NNode
    Dim filter As INFilter(Of NNode)
    Dim value As NList(Of NNode)
     
    value = instance.GetChildren(filter)
    public NList<NNode> GetChildren( 
       INFilter<NNode> filter
    )

    Parameters

    filter
    filter to use, or null if no filter must be applied.

    Return Value

    list of child nodes, which satisfy the filter.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also